home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / dl_exsrc.zoo / strnset.c < prev    next >
C/C++ Source or Header  |  1994-06-28  |  239b  |  16 lines

  1. #include "extras.h"
  2.  
  3. char *strnset(string, c, count)
  4.   char *string;
  5.   int c;
  6.   register int count;
  7. {
  8.   register char *s = string;
  9.  
  10.   if (!s)
  11.     return 0;
  12.   while (--count >= 0 && *s)
  13.     *s++ = (char)c;
  14.   return string;
  15. }
  16.